home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 June: Reference Library / Dev.CD Jun 99 RL Disk 1.toast / What's New / Development Kits / Mac_OS_USB_DDK_v1.2 / Examples / PrinterClassDriver / Utils.h < prev   
Encoding:
C/C++ Source or Header  |  1999-04-15  |  533 b   |  34 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Utils.h
  3.  
  4.     Contains:    General utilities header
  5.  
  6.  
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History:
  11.  
  12.         22 Mar 98     gp        Created
  13.  
  14.     To Do:
  15. */
  16.  
  17. #ifndef __UTILS__
  18. #define __UTILS__
  19.  
  20. #ifndef __LISTS__
  21. #include <Lists.h>
  22. #endif
  23.  
  24. #ifndef __TYPES__
  25. #include <Types.h>
  26. #endif
  27.  
  28. extern    Boolean PStrEqualCaseInsensitive( Str255 string1, Str255 string2 );
  29. extern    void AppendPStr(StringPtr mainStr, StringPtr addStr);
  30. extern    void GetNameFromCell (StringPtr theString, Cell cell, ListHandle hList);
  31.  
  32. #endif
  33.  
  34.